Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 774 Bytes

Improper Clean Up After Tests Have Been Run.rst

File metadata and controls

17 lines (11 loc) · 774 Bytes

Improper Clean Up After Tests Have Been Run

Definition:

  • Improper cleanup occurs when the code that cleans up the mocks and anything created in the test is insufficient or entirely lacking. It may leave files open or objects in memory causing memory leaks. This can be especially important if your tests are doing any type of file manipulation or you are creating files specifically for testing.

References:

Quality attributes